Solving 10385 - Duathlon (Ternary search)
[andmenj-acm.git] / 737 - Gleaming the cubes / .metadata / .plugins / org.eclipse.core.resources / .history / a3 / d0bc963739e7001c124ed31642f489b2
bloba0e923d9d9f4c0d9bb107c31067f7a83cc0938b2
1 import java.io.*;
2 import java.util.*;
4 class Main
6         static BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
8     public static void main (String args[])
9     {
10         String s = stdin.readLine();
11         StringTokenizer tokens = new StringTokenizer(s);
12         int t = Integer.parseInt((tokens.nextToken()));
13         long a, b;
14         for (int i=0; i<t; ++i){
15                 s = stdin.readLine();
16                 tokens = new StringTokenizer(s);
17                 a = Integer.parseInt(tokens.nextToken());
18                 b = Integer.parseInt(tokens.nextToken());
19                 if (a < b){
20                         System.out.println("<");
21                 }else if (a > b){
22                         System.out.println(">");
23                 }else{
24                         System.out.println("=");
25                 }
26         }
27     }